home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Flip / makefile.tcc < prev    next >
Makefile  |  1995-06-12  |  605b  |  26 lines

  1. # ::[[ @(#) makefile.tcc 1.1 89/07/02 00:19:54 ]]::
  2. # Makefile for flip for MS-DOS and Turbo C 2.0.  The supplied turboc.cfg
  3. # configuration file must be in the current directory;  edit it to make
  4. # sure the include directories are correct.
  5.  
  6. CC = tcc
  7. CFLAGS = -c -DTURBOC -DLINT -DNDEBUG
  8. CFMORE =
  9. LD = tcc
  10. LDFLAGS = -eFLIP
  11. LDMORE =
  12.  
  13. OBJS = flip.obj getopt.obj turboc.obj
  14.  
  15. flip.exe: $(OBJS)
  16.     $(LD) $(LDFLAGS) $(LDMORE) $(OBJS)
  17.  
  18. flip.obj: flip.c flip.h
  19.     $(CC) $(CFLAGS) $(CFMORE) $*.c
  20.  
  21. getopt.obj: getopt.c flip.h
  22.     $(CC) $(CFLAGS) $(CFMORE) $*.c
  23.  
  24. turboc.obj: turboc.c flip.h
  25.     $(CC) $(CFLAGS) $(CFMORE) $*.c
  26.